##############################################################
## MOD Title: Internet Explorer Glow/Shadow Fix
## MOD Author: Thoul < thoul@phpbbsmith.com > ( Jeremy Rogers ) http://www.phpbbsmith.com
##
## Installation Level: Intermediate
## Installation Time: 2 Minutes
## Files To Edit:
##		templates/XXXX/overall_header.tpl
## Included Files: N/A
## License: contrib/license.txt GNU General Public License v2
##############################################################
## Author Notes:
##
## On some templates, the glow and shadow effects may not work in Internet
## Explorer browsers.  If you encounter such behavior, it may be due to the
## Doctype set in the template's overall_header.tpl.  This fix will change
## or remove the Doctype in order to enable the glow and shadow.
## 
## Be careful in changing or removing the Doctype.  The Doctype tells browsers
## how they should read the code of your site.  Altering may cause display
## errors.  You should thoroughly test the display of your site after altering
## the Doctype.
##
##############################################################
## BEFORE FOLLOWING THESE INSTRUCTIONS, YOU SHOULD BACK UP ALL RELATED FILES.
##############################################################

#
#-----[ OPEN ]--------------------------------------
#
templates/XXXX/overall_header.tpl

#
#-----[ FIND ]--------------------------------------
#
# This code may be different in each template. Generally, it will be the first
# line or two lines in the file and should at least begin with "<!DOCTYPE" and
# contain "XHTML 1.0 Transitional".
#

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

#
#-----[ REPLACE WITH ]--------------------------------------
#
# Making this replacement may result in odd behavior elsewhere in the forum.
# In such a case, try removing the DOCTYPE entirely instead.
#

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM